home *** CD-ROM | disk | FTP | other *** search
/ Champak 50 / Volume 50 - JOGO DISK .iso / Games / magicheaven.swf / scripts / frame_51 / DoAction.as
Text File  |  2007-10-01  |  1KB  |  74 lines

  1. stop();
  2. btn1.onPress = function()
  3. {
  4.    play_sound("button_sound");
  5. };
  6. btn1.onPress = function()
  7. {
  8.    gotoAndStop("saveScore");
  9. };
  10. btn2.onPress = function()
  11. {
  12.    play_sound("button_sound");
  13. };
  14. btn2.onRelease = function()
  15. {
  16.    gotoAndStop("start");
  17. };
  18. snow_down(bg);
  19. my_data = new Date();
  20. year = my_data.getFullYear();
  21. month = my_data.getMonth() + 1;
  22. if(month < 10)
  23. {
  24.    m_month = "0" + month;
  25. }
  26. else
  27. {
  28.    m_month = month;
  29. }
  30. date = my_data.getDate();
  31. if(date < 10)
  32. {
  33.    m_date = "0" + date;
  34. }
  35. else
  36. {
  37.    m_date = date;
  38. }
  39. hour = my_data.getHours();
  40. if(hour < 10)
  41. {
  42.    m_hour = "0" + hour;
  43. }
  44. else
  45. {
  46.    m_hour = hour;
  47. }
  48. minutes = my_data.getMinutes();
  49. if(minutes < 10)
  50. {
  51.    m_minutes = "0" + minutes;
  52. }
  53. else
  54. {
  55.    m_minutes = minutes;
  56. }
  57. seconds = my_data.getSeconds();
  58. if(seconds < 10)
  59. {
  60.    m_seconds = "0" + seconds;
  61. }
  62. else
  63. {
  64.    m_seconds = seconds;
  65. }
  66. i = 0;
  67. while(i < 6)
  68. {
  69.    this["num" + i] = random(10);
  70.    i++;
  71. }
  72. my_str = new String();
  73. _root.orderId = my_str.concat(year,m_month,m_date,m_hour,m_minutes,m_seconds,num0,num1,num2,num3,num4,num5);
  74.